projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a93100
)
(update_end): Don't check updating_frame; for some reason
author
Andrew Innes
<andrewi@gnu.org>
Fri, 5 Jan 2001 21:26:40 +0000
(21:26 +0000)
committer
Andrew Innes
<andrewi@gnu.org>
Fri, 5 Jan 2001 21:26:40 +0000
(21:26 +0000)
this can be 0 sometimes, such as after dismissing a popup menu,
and isn't necessary given the explicit frame argument.
src/term.c
patch
|
blob
|
history
diff --git
a/src/term.c
b/src/term.c
index e7ee0959306da57a9f82cfc582ace10084b45bfe..3919f7e59e11a2bba7b523c0e4ff4276605aceaf 100644
(file)
--- a/
src/term.c
+++ b/
src/term.c
@@
-507,7
+507,7
@@
void
update_end (f)
FRAME_PTR f;
{
- if (! FRAME_TERMCAP_P (
updating_frame
))
+ if (! FRAME_TERMCAP_P (
f
))
{
(*update_end_hook) (f);
updating_frame = 0;